home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 November / MACPOWER-1997-11.ISO.7z / MACPOWER-1997-11.ISO / Apple関連 / ResEdit 2.1.3 / Examples / PExamples / MakeLDEF < prev    next >
Text File  |  1994-09-14  |  533b  |  28 lines

  1. #    MakeFile    -  Make instructions for the ResEdit ICON LDEF.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1990
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds:
  7. #        The ICON Resource LDEF
  8. #
  9.  
  10. OutFile = {buildToName}
  11. obj = :obj:
  12. source = :Source:
  13. ResEditLibraries = ::Libraries:
  14.  
  15. LDEFLibs =     {obj}LDEF.a.o カ
  16.                         {obj}ResDisp.a.o
  17. # Link for ICON LDEF
  18. "{OutFile}"        トト    {obj}ICON.LDEF.p.o {LDEFLibs}
  19.     Link    {LDEFLibs} カ
  20.             {obj}ICON.LDEF.p.o カ
  21.             -ra =resPurgeable -sg ICON -rt LDEF=128 カ
  22.             -o "{OutFile}"
  23.  
  24. {obj}    ト    {source} {ResEditLibraries}
  25.  
  26.  
  27.  
  28.